The tower of Hanoi
The tower of hanoi is a famous puzzle.
The game consists of three rods with disks stacked on top of them. The puzzle will start with all disks in a stack on one of the rods (like in the picture). The goal is to move all the discs to a single stack on different rod.
To move the disks, you have to follow the following rules:
You can move only one disk at a time.
For each move, you have to take the upper disk from one of the stacks, and place it on top of another stack or empty rod.
You cannot place a larger disk on top of a smaller disk.
This notebook will define a Julia implementation of the puzzle. It's up to you to write an algorithm that solves it.
Setting up the game pieces
What does a Julia implementation look like? We're not really interested in writing code that will manipulate physical disks. Our final goal is a function that will give us a recipe to solve the tower of hanoi, which is just a list of moves to make. Because of that, we can use a lot of abstraction in our implementation, and keep the data structures as simple as possible.
To start, we have to define some representation of the disks and the stacks. The disks have one important property, which is that they are ordered. We can use integers to represent them.
8
(Side note: the number of disks is arbitrary. When testing your function, you may want to set it to 1 or 2 to start.)
1:8
A single stack can be represented as an array with all the disks in it. We will list them from top to bottom.
1
2
3
4
5
6
7
8
Now we have to make three of those.
1
2
3
4
5
6
7
8
Defining the rules
Now that we have our "game board", we can implement the rules.
To start, we make two functions for states. A state of the game is just an array of stacks.
We will define a function that checks if a state is okay according to the rules. To be legal, all the stacks should be in the correct order, so no larger disks on top of smaller disks.
Another good thing to check: no disks should have appeared or disappeared since we started!
islegal (generic function with 1 method)
Another function for states: check if we are done! We can assume that we already checked if the state was legal. So we know that all the disks are there and they are ordered correctly. To check if we are finished, we just need to check if the last stack contains all the disks.
iscomplete (generic function with 1 method)
Now the only rules left to implement are the rules for moving disks.
We could implement this as another check on states, but it's easier to just write a legal move
function. Your solution will specify moves for the move
function, so this will be the only way that the stacks are actually manipulated. That way, we are sure that nothing fishy is happening.
We will make our move
function so that its input consists of a state of the game, and instructions for what to do. Its output will be the new state of the game.
So what should those instructions look like? It may seem intuitive to give a disk that should be moved, but that's more than we need. After all, we are only allowed to take the top disk from one stack, and move it to the top of another. So we only have to say which stacks we are moving between.
(Note that the move
function is okay with moving a larger disk on top of a smaller disk. We already implemented that restriction in islegal
.)
move (generic function with 1 method)
Solving the problem
We have implemented the game pieces and the rules, so you can start working on your solution.
To do this, you can fill in the solve(stacks)
function. This function should give a solution for the given stacks
, by moving all the disks from stack 1 to stack 3.
As output, solve
should give a recipe, that tells us what to do. This recipe should be an array of moves. Each moves is a (source, target)
tuple, specifying from which stack to which stack you should move.
For example, it might look like this:
wrong_solution (generic function with 1 method)
Now you can work on building an actual solution. Some tips:
solve(stacks)
can keep track of the board if you want, but it doesn't have to.The section below will actually run your moves, which is very useful for checking them.
If you want, you can change
num_disks
to 1 or 2. That can be a good starting point.
solve (generic function with 1 method)
Checking solutions
This is where we can check a solution. We start with a function that takes our recipe and runs it.
run_solution (generic function with 2 methods)